home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _8AB13555E18940F3874C1C98177ACB89 < prev    next >
Encoding:
Text File  |  2004-04-21  |  1021 b   |  46 lines

  1. light("spot_spotmap")
  2. {
  3.     pass()
  4.     {
  5.         tmu()
  6.         {
  7.             TexGen("spotlight")
  8.  
  9.             texture()
  10.             {
  11.                 spotmap()
  12.                 addressfunc("clamp", "clamp", "clamp")
  13.  
  14.                 filtering("linear_no_mip")  //FIXIT
  15.             }
  16.  
  17.             ColorOp("mul", "texture", "tfactor", "current")
  18.             AlphaOp("mul", "texture", "tfactor", "current")
  19.         }
  20.  
  21.         tmu()
  22.         {
  23.             TexGen("spotlight_z_att")
  24.  
  25.             texture()
  26.             {
  27.                 Image("spot_z.png")
  28.                 addressfunc("clamp", "clamp", "clamp")
  29.                 filtering("linear_no_mip")
  30.             }
  31.  
  32.             ColorOp("mul", "texture", "current", "current")
  33.             AlphaOp("mul", "texture", "current", "current")
  34.         }
  35.  
  36.         tfactor(1,1,1,1)
  37.         colorgen("tfactor", "user", 0,0,0, "user", 0,0,0)
  38.  
  39.         BlendFunc("dest_color", "one")
  40.         DepthFunc("lequal", 0)
  41.  
  42.         BlackFog()
  43.     }
  44. }
  45.  
  46.